summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ns/ns_results.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/ns/ns_results.h')
-rw-r--r--src/core/hle/service/ns/ns_results.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/core/hle/service/ns/ns_results.h b/src/core/hle/service/ns/ns_results.h
new file mode 100644
index 000000000..16d2ea6f7
--- /dev/null
+++ b/src/core/hle/service/ns/ns_results.h
@@ -0,0 +1,12 @@
+// SPDX-FileCopyrightText: Copyright 2019 yuzu Emulator Project
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#pragma once
+
+#include "core/hle/result.h"
+
+namespace Service::NS {
+
+constexpr Result ResultApplicationLanguageNotFound{ErrorModule::NS, 300};
+
+}